home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Softwarová Záchrana 3
/
Softwarova-zachrana-3.bin
/
InkMonitor
/
inkmonitor.exe
/
{app}
/
Xml2Html.xsl
< prev
Wrap
Extensible Markup Language
|
2002-04-10
|
3KB
|
93 lines
<?xml version="1.0" encoding="windows-1250"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<!--
Copyright ⌐ 1999-2001 POKLUDA Development & Education; All rights reserved.
Contact: http://www.pokluda.cz
info@pokluda.cz
-->
<xsl:template match="/">
<html>
<head><title>InkMonitor verze 2.1</title></head>
<style type="text/css">
body {
FONT-SIZE: 10pt; BACKGROUND: white; COLOR: black; FONT-FAMILY: Tahoma, Arial, Helvetica, sans-serif;
}
a {
TEXT-DECORATION: none
}
a:link {
COLOR: navy; TEXT-DECORATION: none
}
a:visited {
COLOR: navy; TEXT-DECORATION: none
}
a:hover {
COLOR: red; TEXT-DECORATION: underline
}
td.Group {
FONT-WEIGHT: 800; BACKGROUND: #00319c; COLOR: white
}
td.Text {
FONT-SIZE: 10pt
}
table.Navigation {
FONT-SIZE: 10pt
}
h2 {
font-weight : 400; text-align: center; font-size: 18pt; margin-bottom: 0
}
h3 {
font-weight : 300; text-align: center; font-size: 12pt; margin-top: 0
}
.cite {
font-family:Tahoma, Arial, Helvetica, sans-serif; font-size:8pt; text-align: right
}
</style>
<body>
<h2>InkMonitor verze 2.1</h2>
<h3>Generovan² datov² soubor</h3>
<div align="center">
<xsl:apply-templates select="//printed" />
</div>
<p>Tato tabulka byla vytvo°ena programem InkMonitor. Program InkMonitor je freeware
programem, kter² zjiÜ¥uje mno₧stvφ inkoustu/toneru ve VaÜφ inkoustovΘ nebo laserovΘ
tiskßrn∞. Program byl vytvo°en firmou <a href="http://www.pokluda.cz">Pokluda</a> a
Vy si jej m∙₧ete <a href="http://www.pokluda.cz/stazeni.asp">stßhnout</a>
v nejaktußln∞jÜφ verzi z naÜeho serveru. Technickß podpora k programu je k dispozici
na <a href="http://www.pokluda.cz/podpora/inkmonitor.asp">tΘto strßnce</a>.</p>
<hr size="1"/>
<div class="cite" align="right">Copyright ⌐ 1999-2001 <a class="cite" href="http://www.pokluda.com/">Pokluda</a>
</div>
</body>
</html>
</xsl:template>
<xsl:template match="//printed">
<table class="Navigation" cellSpacing="0" cellPadding="3" width="640" border="1" bordercolor="black" bordercolordark="white">
<tr>
<td class="Group">Datum</td>
<td class="Group">╚as</td>
<td class="Group">NejlepÜφ</td>
<td class="Group">Normßlnφ</td>
<td class="Group">Ekonomick²</td>
<td class="Group">U₧ivatel</td>
<td class="Group">Poznßmka</td>
</tr>
<xsl:for-each select="data">
<tr>
<xsl:for-each select="*">
<td>
<xsl:value-of/>
</td>
</xsl:for-each>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>